30BTable Element

Description

The Table element is used to format Search screens or Inquiry results. This element is available for use when configuring Search screen business rules as well as Inquiry rules.

1Table  Element\Attribute Table

Element/Tag

Definition

Attribute

Element/Attribute Value and Description

<Table>

 

 

Controls the display of results.  This tag formats results in a table.

 

 

    <Column>

   

 

WIDTH

Number

Defines the column width of the table and the number of characters that can be displayed in the specified column.

ALIGN

LEFT, CENTER

Defines the data alignment of the column.

           <Display>

Display name of the field.  Indicates how the field will display on the screen.

 

 

            <Name>

Exact name of the field (database name).

 

 

             <Group>

 

Indicates the table/screen that stores the fixed field being referenced. The value used should be appropriate for the screen being configured.

 

Examples:

SegmentName

SegmentField

Client

ClientField

Role

RoleField

           <DataType>

Defines the datatype of the field.

 

 

 

 XML Example

<Table>

<Column WIDTH="152" ALIGN="LEFT" FORMAT="Text">

<Display>Refund Number</Display>

<Group>SuspenseRefund</Group>

<Name>RoleCode</Name>

<DataType>Text</DataType>

</Column>

<Column WIDTH="140" ALIGN="Right" FORMAT="Text">

<Display>Company</Display>

<Group>SuspenseRefund</Group>

<Name>Company</Name>

<DataType>Text</DataType>

</Column>

<Column WIDTH="140" ALIGN="Right" FORMAT="Text">

<Display>Plan</Display>

<Group>SuspenseRefund</Group>

<Name>Plan</Name>

<DataType>Text</DataType>

</Column>

</Table>